home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / mac_file / vendor_d / ga_softw / ooga / pkgdcl.lis < prev    next >
File List  |  1991-02-03  |  940b  |  38 lines

  1. ;;; -*- Mode:Lisp; Package:USER; Base:10; Syntax:COMMON-LISP -*-
  2.  
  3. #||
  4.             RESTRICTED RIGHTS LEGEND
  5.                     
  6.  Use, duplication, or disclosure by the Government is subject to
  7.  restrictions as set forth in subdivision (b)(3)(ii) of the Rights in
  8.  Technical Data and Computer Software Clause at 52.227-7013 of the DOD
  9.  FAR Supplement.
  10.                     
  11.                 TSP (The Software Partnership)
  12.                 P.O. Box 991
  13.                 Melrose, MA 02176
  14.                     
  15.       Copyright 1990 by Lawrence Davis and Daniel Cerys, all rights reserved.
  16. ||#
  17.  
  18. (in-package :user)
  19.  
  20.  
  21. ;;Just to be sure
  22. #+:pcl
  23. (export pcl::*other-exports* 'pcl)
  24.  
  25. ;;We were using a special DEFPACKAGE macro (special for non-LISPMs), but our needs
  26. ;;are really quite simple.
  27. (eval-when (compile load eval)
  28. (unless (find-package 'ooga)
  29.   (make-package 'ooga
  30.         :use
  31.         '(
  32.           #-genera-8 "LISP"
  33.           #+genera-8 "FUTURE-COMMON-LISP"
  34.           #+(and clos (not pcl)) "CLOS"
  35.           #-(or genera-8 (and clos (not pcl))) "PCL")
  36.         )
  37.   ))
  38.